home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d12 / v9n03.arc / DELFILES.BAT < prev    next >
DOS Batch File  |  1990-01-12  |  409b  |  17 lines

  1. ECHO OFF
  2. : This batch file removes all files and the directory created by
  3. : by batch file FASTrun.
  4. :
  5. :    Make sure we are deleting in correct dir by checking for marker file:
  6. IF NOT EXIST PCITK.MRK GOTO NoDel
  7. DEL *.MRK
  8. DEL *.COM
  9. DEL *.BAT
  10. CD ..
  11. RD ))PCITK.TMP
  12. GOTO End
  13. :NoDel
  14. ECHO An error has occurred...we should be in directory ))PCITK.TMP with file
  15. ECHO  PCITK.MRK to run this file.
  16. :End
  17.